home *** CD-ROM | disk | FTP | other *** search
- ;=========================================================================
- ; Cross Words
- ; Deluxe Edition
- ; Written by Edward E. Dellow
- ; Copyright (c) 1993, Strategic Solutions
- ;
- ; _______
- ; ____|__ | (R)
- ; --| | |-------------------
- ; | ____|__ | Association of
- ; | | |_| Shareware
- ; |__| o | Professionals
- ; -----| | |---------------------
- ; |___|___| MEMBER
- ;
- ;=========================================================================
- ;
- ; To install Crosswords Deluxe
- ;
- ; 1) Start windows
- ; 2) From the Program manager Select FILE\RUN
- ; 3) Run the program INSTALL.EXE in this directory\disk
- ; 4) Answer the questions asked by the install program
- ;------------------------------------------------------------------------
- ;
- ; Install script for Crosswords deluxe
- ;
- ; Edward E. Dellow 4/25/93
- ;
- ; Copyright (c) Strategic Solutions
- ;
- ;------------------------------------------------------------------------
-
- Title Install Crosswords Deluxe Evaluation
- Icon1 cweval.exe
- Icon2 cweval.exe
-
- ; Default paths
-
- Set INSTPATH=c:\ss\cwdeluxe
- Set WINPATH=c:\windows
-
- ; Get the path where the product should be put
-
- cls
- Echo
- Echo Cross Words Deluxe Version 1.0
- Echo Evaluation version
- Echo Installation
- Echo Copyright(c) 1993 Strategic Solutions
- Echo Written by Edward E. Dellow
-
- Status You are about to install Cross Words Deluxe on you Hard drive. Enter the pathname where you would like it to be installed.
-
- :GetPath
- Ask INSTPATH
- FullPath INSTPATH=%%INSTPATH%%
- OnError MkDir_Error
- Mkdir %%INSTPATH%%
-
- ; Get the path where windows can be found
-
- :GetWinPath
- OnError Install_Error
- Status Enter the path name containing Microsoft Windows.
- Ask WINPATH
-
- OnError Install_Error
-
- ;--------------------
- ; Begin installation
- ;--------------------
-
- Cls
- Echo Installing Cross Words Deluxe.
- Echo Install Dir = '%%INSTPATH%%'
- Echo Windows Dir = '%%WINPATH%%'
- Echo
- Echo One moment please...
-
- AddGroup Stategic Solutions
- Copy cweval.exe %%INSTPATH%%
- Copy cweval.pbk %%INSTPATH%%
- Copy cwdeluxe.hlp %%INSTPATH%%
- Copy cwdeluxe.txt %%INSTPATH%%
- Copy orderfrm.txt %%INSTPATH%%
- Copy bwcc.dll %%WINPATH%%\system
- ReplaceItem %%INSTPATH%%\cweval.exe,Cross Words Deluxe
- Status
- Message Installation complete!
- ShowGroup Stategic Solutions,3
- Goto End
-
- :MkDir_Error
- Status The path specified is invalid! Please enter a valid Directory for installation.
- Goto GetPath
-
- :Install_Error
- cls
- Echo
- Echo An error has occurred.
- Echo Please read the error message below.
- Pause
-
- :End
-